home *** CD-ROM | disk | FTP | other *** search
/ World Tours: Brazil / WorldTours: Brazil.iso / mac / content / main.dir / 00054_Script_roll down < prev    next >
Text File  |  2007-04-22  |  711b  |  38 lines

  1. global chapterCount,firstChapter
  2.  
  3. on beginsprite
  4.   check()
  5. end
  6.  
  7. on mousedown
  8.   firstChapter=firstChapter+1
  9.   if firstChapter>chapterCount-8 then firstChapter=chapterCount-8
  10.   reflashChapterList()
  11.   check()
  12. end
  13.  
  14. on check
  15.   
  16.   if chapterCount < 10 then
  17.     
  18.     sprite(the currentspriteNum-1).locH=-320
  19.     sprite(the currentspriteNum).locH=-320
  20.     
  21.   else
  22.     
  23.     if firstChapter=1 then
  24.       sprite(the currentspriteNum-1).locH=-320
  25.     else
  26.       sprite(the currentspriteNum-1).locH=320
  27.     end if
  28.     if firstChapter=chapterCount-8 then
  29.       sprite(the currentspriteNum).locH=-320
  30.     else
  31.       sprite(the currentspriteNum).locH=320
  32.     end if
  33.     
  34.   end if
  35.   
  36.   
  37. end
  38.